@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');
html {
    height: -webkit-fill-available;
}
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Courier Prime', monospace;
    height: -webkit-fill-available;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    animation: fadeOut 2s ease forwards;
    z-index: 1;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#background-video {
    width: 100vw;
    height: 100svh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}  

.container {
    height: 100svh;
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2em; /* Adjust font size for smaller screens */
    margin-bottom: 0.2em;
}

p {
    font-size: 1em; /* Adjust font size for smaller screens */
    margin-bottom: 1em;
}

.spotify {
    display: flex;
    justify-content: center;
    border-top: #ffffff solid 1px;
    padding-top: 25px;
    padding-left: 150px;
    padding-right: 150px;
}
.buttons {
    display: flex;
    justify-content: center;
    padding-top: 25px;
    padding-left: 150px;
    padding-right: 150px;
}

.btn {
    text-decoration: none;
    border-color: #747474;
    background-color: #74747431;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center; /* Center content vertically */
}

.btn:hover {
    background-color: #ffffff;
    color: #747474;
}

.btn-text {
    flex-grow: 2;
}
.buttons-small {
    display: flex;
    justify-content: center;
}
.btn-small {
    text-decoration: none;
    border-color: #747474;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 2em;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center; /* Center content vertically */
}

.btn-small:hover {
    background-color: #ffffff;
    color: #747474;
}

.btn-small-text {
    flex-grow: 1;
}

.btn-image {
    width: 30px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    object-fit: cover; /* Preserve aspect ratio while covering container */
    border-radius: 50%; /* Optional: for a circular image */
    margin-left: 10px; /* Adjust spacing between text and image */
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
        margin-bottom: 0.2em;
    }
    
    .buttons {
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        align-items: center;
        padding: 15px;
    }
    
    .btn {
        text-decoration: none;
        border-color: #747474;
        background-color: #74747431;
        color: white;
        padding: 10px 20px;
        margin: 10px 0;
        border-radius: 10px;
        transition: background-color 0.2s ease;
        display: flex;
        align-items: center;
    }
    
    .btn-text {
        flex-grow: 2;
    }
}