html, body {
    min-height: 100%;
    height: 100%;

}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(to bottom, #eefbfe 80%, white);
    color: #0e3f42;
    min-height: 100%;
    background-attachment: fixed;
}

main {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    min-height: 100%;
    height: 100%;
}
    main > img {
        margin-top: -100px;
    }


section {
    background: linear-gradient(180deg, white, transparent);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}



h1 {
    display: none;
}

a {
    text-decoration: none;
    color: #0e3f42;
    position: relative;
    display: inline-block;
}

    a:before {
        content: '';
        position: absolute;
        bottom: 0px;
        height: 1px;
        width: 0%;
        transition: all 0.3s ease-in-out;
        background: black;
    }

    a:hover:before {
        width: 100%;
        transition: all 0.3s ease-in-out;
    }

.button {
    background: linear-gradient(to right, #3e86ba, #349FC4, #47BFD0);
    color: white;
    border-radius: 8px;
    padding: 20px 35px;
    font-weight: 600;
    position: relative;
    outline: 5px solid transparent;
    transition: all 0.3s ease-in-out;
}

    .button span {
        z-index: 1;
        position: relative;
    }

    .button:after {
        content: '';
        position: absolute;
        background: linear-gradient(to left, #3e86ba, #349FC4, #47BFD0);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 8px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .button:hover {
        outline: 5px solid rgba(91, 174, 89, 30%);
        transition: all 0.3s ease-in-out;
    }

.button:hover:after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.button:before {
    display: none;
}

img {
    width: auto;
    max-width: 100%;
}

p {
    margin: 5px 0;
}


@media(max-width:991px) {

    section {
        background: transparent;
        padding: 0;
    }

        section > img {
        max-height:100px;
        }
}

@media(max-height:450px) and (max-width:950px) {
    body {
        padding: 130px 0 50px;
    }
}
#datetime{
	display: block;
    font-weight: bold;
    padding-bottom: 10px;
}