@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat&family=Poppins:ital,wght@0,400;1,500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 25px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body, header, main, .list1, .list2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background-color:rgb(210, 228, 247);
    justify-content: space-between;
}

header, footer, main, h1, h2, nav {
    width: 100%;
}

header, footer {
    background-color: rgb(54, 97, 139);
}

header, blockquote, h3, .list1, .banner, footer {
    color: white;
}

header {
    background-image: url(../images/0_op_rodolfo_quiros.jpg);
    background-size: cover;
    height: 100vh;
    gap: 2.5vmax;
    opacity: 0;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vmin;
}

#index-nav {
    opacity: 0;
}

nav > img {
    width: 5rem;
    height: auto;
    box-shadow: none;
}

#titles {
    display: flex;
    flex-direction: column;
    justify-self: center;
    opacity: 0;
}

h1 {
    font-size: 7vmax;
    background-color: rgba(59, 124, 189, 0.5);
    font-family: 'Anton';
    letter-spacing: 0.75rem;
    font-weight: normal;
}

h2 {
    text-align: center;
    font-size: 2vmax;
    border-top: 0.5rem solid black;
    background-image: radial-gradient(rgb(2, 41, 80), rgba(54, 97, 139, 0.75));
}

#arrow {
    width: 3rem;
    height: 3rem;
    border-right: 0.75rem solid white;
    border-bottom: 0.75rem solid white;
    border-left: 0;
    border-top: 0;
    align-self: center;
    transform: rotate(45deg);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    transition-property: background-color, box-shadow;
    transition-duration: 200ms;
    background-color: transparent;
    box-shadow: none;
    opacity: 0;
}

#arrow:hover {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0.75rem 0.75rem 20px rgba(255, 255, 255, 0.75), -0.75rem -0.75rem 20px rgba(255, 255, 255, 0.75), 0.75rem -0.75rem 20px rgba(255, 255, 255, 0.75), -0.75rem 0.75rem 20px rgba(255, 255, 255, 0.75);
}

.bar {
    width: 0.75rem;
    height: 4rem;
    background-color: white;
    border-radius: 10px;
    transform: rotate(135deg);
}

.skyblue-shaft {
    background-color: rgb(138, 193, 248);
    width: 0.75rem;
    height: 4rem;
}

main {
    gap: 2vmax;
    padding: 2vmax 0;
}

blockquote {
    background-color: rgb(2, 41, 80);
    font-style: italic;
    font-size: 3.5vmax;
    text-align: center;
    padding: 1vmax;
    box-shadow: -2vmax -1vmax rgb(59, 124, 189), -4vmax -2vmax rgb(138, 193, 248);
    margin-top: 4vmax;
    margin-left: 2.5vmax;
    width: 86%;
    font-family: 'Poppins';
}

section, img, h3, .banner, button {
    border-radius: 5px;
}

section {
    width: 90%;
    background-color: rgb(138, 193, 248);
    padding: 2vmax;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    font-size: 2rem;
    text-align: center;
    background-image: radial-gradient(rgb(2, 41, 80), rgba(54, 97, 139, 0.75));
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1rem;
    box-shadow: 7px 7px rgb(2, 41, 80);
    font-family: 'Poppins';
    align-self: flex-start;
}

.please-sentence {
    align-self: flex-start;
}

p, .content {
    font-size: 1.2rem;
}

p {
    margin: 5vmin;
}

.list-subject {
    font-size: 1.3rem;
}

.content {
    padding-bottom: 5vmin;
}

.content > li {
    margin: 2vmin 10vmin;
}

.lists {
    display: flex;
    flex-wrap: wrap;
}

.list1, .list2 {
    flex: 1;
}

.list1 {
    background-color: rgb(2, 41, 80);
}

.list2 {
    background-color: rgb(59, 124, 189);
}

.banner {
    background-color: rgb(2, 41, 80);
    padding: 0.3rem;
    font-size: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.button {
    display: block;
    color: white;
    background-color: rgb(59, 124, 189);
    background-image: radial-gradient(rgb(96, 176, 255), rgb(0, 77, 155));
    padding: 0.5em;
    font-size: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 3rem auto;
    text-align: center;
    border: none;
    text-decoration: none;
}

.button:hover {
    color: rgb(2, 41, 80);
    background-image: radial-gradient(white, rgb(62, 158, 255));
    box-shadow: 0.75vmin 0.75vmin 5px rgb(0, 77, 155);
    font-weight: bold;
}

.front-images {
    margin-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.front-images > img {
    height: 30vmax;
}

img {
    height: 40vmax;
    width: auto;
    box-shadow: 5px 5px 10px rgb(41, 48, 88);
}

#arrow, #facebook {
    cursor: pointer;
}

footer {
    font-size: 0.75rem;
    background-color: slategrey;
    text-align: center;
    padding: 2vmax;
    background-image: radial-gradient(rgb(2, 41, 80), rgba(54, 97, 139, 0.75));
}


@media (max-width: 700px) {
    header {
        gap: 7vmax;
    }
    h1 {
        text-align: center;
        font-size: 5.75vmax;
        letter-spacing: 0.1rem;
    }
    h2 {
        line-height: 1rem;
        font-size: 3vmax;
    }
    h3 {
        font-size: 7vmin;
        margin-left: 1vmax;
    }
    section {
        padding: 1vmax 0;
    }
    p {
        font-size: 5vmin;
        margin: 5vmin 2vmin;
        text-align: center;
    }
    .lists {
        flex-direction: column;
    }
    .list-subject {
        font-size: 1rem;
    }
    .content {
        font-size: 5vmin;
    }
    .list1, .list2 {
        text-align: center;
    }
    .content > li {
        list-style-type: none;
        margin: 5vmin 1.5vmin;
    }
    .email {
        font-size: 4.25vmin;
    }
    .front-images{
        width: 80%;
        gap: 10px;
    }
    .front-images > img {
        height: auto;
        width: 100%;
    }
    img {
        width: 95%;
        height: auto;
    }
    .button {
        font-size: 1.25rem;
    }
    blockquote {
        box-shadow: none;
        border: 2vmax solid rgb(59, 124, 189);
        margin-left: 0;
        margin-top: 2vmax;
        margin-bottom: 2vmax;
    }
}

@media (prefers-color-scheme: dark) {
    .patty {
        background-color: white;
    }
}