/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* General styles */
body {
    background-color: black;
    color: white;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

a {
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    font-size: 1.25rem;
    color: white;
}

.album-announcement {
    font-size: 4rem; /* Slightly larger than regular text */
    font-weight: bold;
    margin: 20px 0;
}

/* Responsive design */
img {
    max-width: 100%;
    height: auto;
}

/* For tablets and smaller screens */
@media (max-width: 768px) {
    a, p {
        font-size: 1.25rem;
    }
    .album-announcement {
        font-size: 2.75rem;
    }
}

/* Specific styling for Galaxy S23 Ultra */
@media (min-width: 1440px) and (max-width: 1600px) and (orientation: portrait), 
       (min-width: 1080px) and (max-width: 1440px) and (orientation: landscape) {
    a, p {
        font-size: 2rem;
    }
    .album-announcement {
        font-size: 4rem;
    }
}
