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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #999;
    background-image: url('1.jpg');
    margin: 0;
    padding: 0;
    color: #200;
    transition: background-image 0.0s ease-in-out;
}

.background-loaded {
    background-image: url('7.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: inherit;
    position: relative;
    width: 100%;
    height: auto;
}

body {
    margin: 0;
    padding: 0;
}


.container {
    width: 70%;
    margin: 0 auto;
    text-align: right;
}

.right-aligned-content {
    margin-bottom: 10px;
    text-align: right;
    margin-left: auto;
    
}

.center-aligned-content {
    margin-bottom: 10px;
    text-align: center;
    margin: 30px;
}

.button-container {
    transition: transform 0.2s;
    height: 80px;
    margin-top: 30px;
    height: auto;
}

.button-container:hover {
    transition: transform 0.2s;
    transform: scale(102%);
}

.button {
    display: block;
    width: 100%;
    height: 80px;
    padding: 15px;
    margin: 10px auto;
    text-align: center;
    background-color: rgba(250, 250, 250, 0.95);
    color: #101010;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    box-shadow: 3px 3px 2px rgba(230, 230, 230, 0.7);
    transition: box-shadow 0.5s ease;
    letter-spacing: 1.1px;
    transition: background-color 0.5s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.5s;
}


.button small {
    display: block;
    font-size: 12px;
    color: #555;

}

.button-description {
    display: none;
    text-align: center;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 5px;
    background-color: rgba(222, 222, 222, 0.9);
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin: -10px auto 0px;
    overflow: hidden;
    transition: height 0.5s ease-out, opacity 0.5s ease-out;
}

.button.no-shadow {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 1);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.logo {
    width: 100%;
    max-width: 100px;
    margin-top: 14px;
    margin-bottom: 0px;
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 50px auto;
    margin-top: 20px;
}

.iframe-container iframe {
    width: 75%;
    height: 600px;
    border: 0;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .iframe-container iframe {
        width: 90%;
    }

    .button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .button {
        font-size: 14px;
        padding: 12px;
    }

    .logo {
        max-width: 80px;
    }
}