@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

#background {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

#background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1{
    font-family: Merriweather;
    color: #3c7fb6;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 27px;
    height: 50%vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

#logo img {
    padding-top: 50px;
    max-width: 250px;
    height: auto;
    display: block;
}

.verso-container {
    margin-top: 40px;
    text-align: center;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 40px;
}

.verso-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.9),
        0 0 20px rgba(0, 162, 255, 0.4);
}

.verso-reference {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0, 162, 255, 0.8);
}

.navigation__social {
   display: flex;
   align-items: center;
   justify-content: center;
   column-gap: 20px;
   transition: all 0.4s;

}

.navigation__social svg {
    width: 50px;
    height: 50px;
    opacity: 0.4;
}

.navigation__social svg:hover {
    opacity: 1;
    transform: translateY(-5px);
    cursor: pointer;
}

.direitos{
    font-family: Merriweather;
    color: #3c7fb6;
    font-size: 0.7rem
}

@media (max-width: 480px) {
    #container {
        padding-top: 0.5px;
        justify-content: center;
    }

    h1{
    font-family: Merriweather;
    font-size: 1rem;
    text-align: center;

}

    #logo img {
        width: 80%;
        max-width: 280px;
        padding-top: 0;
        margin: 0 auto;
        display: block;
    }

    .verso-container {
        margin-top: 30px;
    }

    .verso-text {
        font-size: 0.7rem;
    }

    .direitos{
    font-size: 0.6rem
}
}

@media screen and (width: 540px) and (height: 720px) {
    #container {
        padding-top: 23.5vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    h1{
    font-size: 1rem;
}

    main {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    #logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    #logo img {
        width: 80% !important;
        max-width: 180px !important;
        margin: 0 auto !important;
        padding-top: 0 !important;
    }

    .verso-container {
        margin-top: 15px !important;
        padding: 0 30px !important;
        text-align: center !important;
        width: 100% !important;
        padding-bottom: 60px !important;
    }

    .verso-text {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .verso-reference {
        margin-top: 8px !important;
        font-size: 0.8rem !important;
    }

    .navigation__social{
        padding-bottom: 50px;
    }

    .navigation__social svg {
    width: 30px !important;
    height: 30px !important;
    opacity: 0.4 !important;
}
}

@media screen and (width: 912px) and (height: 1368px) {
    #container {
        padding-top: 27.5vh !important;
        justify-content: flex-start;
        align-content: center;
    }

    #logo{
        margin: 0;
        padding: 0;
        align-items: center;
    }

    #logo img {
        width: 100% !important;
        max-width: 350px;
    }

    h1{
        font-size: 1.7rem;
    }

    .verso-container {
        margin-top: 50px !important;
    }

    .verso-text {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    .verso-reference {
        margin-top: 8px !important;
        font-size: 1.2rem !important;
    }

    .direitos{
        font-size: 1rem;
    }
}