main, head {
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Nova Flat';
    background-color: rgba(255, 255, 255, 1);
    background-image: linear-gradient(169deg, rgba(255, 255, 255, 1) 0%, rgba(220, 219, 219, 1) 46%, rgba(255, 255, 255, 1) 100%);
}


.header {
    height: 100vh;
    min-height: 700px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.extension_container {
    width: 100%;
}

.extension_name {
    overflow: hidden;
    font-size: 3.5em;
    margin: 1.5em auto;
    width: 75vw;
    text-align: center;
}

.extension_name::before {
    display: block;
    content: '';
    margin-bottom: 0.5em;
    height: 10px;
    background-color: #ff0000;
}

.extension_name::after {
    display: block;
    content: '';
    margin-top: 0.5em;
    height: 10px;
    background-color: #ff0000;
}

.logo {
    height: 350px;
    width: 350px;
    border-radius: 40px;
    background-image: url("assets/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.find-more {
    font-size: 2em;
    bottom: 0;
    position: absolute;
    text-align: center;
}

@media (max-height: 1260px){
    .logo {
        width: 220px;
        max-height: 220px;
    }

    .find-more {
        bottom: -90px;
    }
}

.description {
    padding: 2em 1em;
    display: flex;
    gap: 2em;

    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;

    font-size: 26px;

    background-color: rgba(255, 0, 0, 0.04);
    background-size: auto;
    background-position: left top;
    background-repeat: repeat;
}

.description > .screen {
    border-radius: 10px;
}

.extension_name::before,
.extension_name::after {
    width: 100%;
    transition: margin-left 2s;
}

.extension_name::before {
    margin-left: -300%;
}

.extension_name::after {
    margin-left: 300%;
}

body[class~="loaded"] .extension_name::before,
body[class~="loaded"] .extension_name::after {
    margin-left: 0;
}

.find-more-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200px;
}

.arrow-down {
    height: 30px;
}

.arrow-down:first-of-type {
    animation: bottom_arrow 2s ease-in-out infinite;
}

@keyframes bottom_arrow {

    0% {
        margin-top: 20px;
    }

    50% {
        margin-top: 0;
    }

    100% {
        margin-top: 20px;
    }
}

.description {
    font-size: 26px;
}

.screen {
    border-radius: 10px;
    border: 2px solid #868686;

    max-width: 100%;
    height: auto;
    object-fit: none;
}

img.screen {
    -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}

.download {
    font-size: 26px;
}

.download p {
    padding: 1em;
    text-align: center;
}

.download-link {
    margin: 0 auto;
    max-width: 650px;
    display: block;
}

.download-link img {
    max-height: 200px;
}

.footer {
    font-size: 26px;
    text-align: center;
    padding: 1em;
    background-color: rgba(255, 0, 0, 0.04);
}

.buymeacoffee {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.buymeacoffee img {
    height: 70px;
}