@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

*::selection {
    background: #0ef;
    color: #1f242d;
}

body {
    background: #F5F5F5;
    color: #0C2D57;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 100;
}

.logo {
    /* font-size: 30px; */
    color: #005596cc;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
}

.navbar a {
    display: inline-block;
    font-size: 18px;
    color: #005596cc;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.navbar a:hover,
.navbar a.active {
    color: #002139cc;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-img img {
    max-width: 450px;
    margin-right: -20px;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 2s, 3s;
}

.listLink {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    width: fit-content;
    row-gap: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1.2s;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff; 
    /* #FC6736 */
    border-radius: 40px;
    box-shadow: 0 0 10px #070F2B;
    font-size: 16px;
    color: #070F2B;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    border: 2px;
    border-color: #070F2B;
    
    /* margin-bottom: 3px 0; */

}

.btn:hover {
    background: #070F2B;
    color: #fff;
    animation: buttonZoomIn 1s ease forwards;
}
footer {
    font-family: PT Sans;
    padding-bottom: 12px;
    padding-top: 5px;
    padding-left: 4px;
    padding-right: 4px;
    text-align: Right;
    background-color: black;
    width: 100%;
}

footer > div {
    display: flex;
    flex-direction: column;
}

footer > div > div:first-child {
    display: flex;
    flex-direction: row;
    max-width: 600px;
    margin: auto;
    color: gray;
}
footer > div > div:last-child{
    font-size: 10px;
}
footer > div > div:last-child > div:first-child {
    margin-bottom: 2px;
    margin-right: 2px;
}

footer > div > div:last-child > div:last-child {
    margin-left: auto;
}


/* Media Queries */
/* Small screens */
@media only screen and (max-width: 600px) {
    .header {
        padding: 20px 5%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .navbar a {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .home {
        flex-direction: column;
        padding: 70px 5% 0;
    }

    .home-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 24px;
    }

    .home-img img {
        margin: 0 auto;
    }

    .listLink {
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
    }
}

/* Medium screens */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .header {
        padding: 20px 10%;
    }

    .navbar {
        margin-top: 0;
    }

    .home-content {
        max-width: 500px;
    }

    .home-content h1 {
        font-size: 48px;
    }

    .home-content h3 {
        font-size: 28px;
    }
}

/* Large screens */
@media only screen and (min-width: 1025px) {
    .footer {
        flex-direction: row;
    }
    .header {
        padding: 20px 10%;
    }

    .home-content {
        max-width: 600px;
    }
}

/* KEYFRAMES ANIMATION00 */

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes buttonZoomIn {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-24px);
    }
    100% {
        transform: translateY(0);
    }
}