@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #007AE9;
    padding: 2vw;
}

main {
    border-radius: 25px;
    background-color: white;
    padding: 1rem 3rem !important;
}

.navbar {
    border-radius: 20px 20px 0px 0px;
    background-color: white !important;

}


.profile {
    border-radius: 25px;
    border: 10px solid #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 90%;
    height: auto;
}

.hero {
    padding: 5% 10%;
}

.hero i {
    font-size: 1.35rem;
}

.archivo-bold {
    font-family: "Archivo", sans-serif;
    font-weight: bold !important;
    font-style: normal;
}

.archivo-medium {
    font-family: "Archivo", sans-serif;
    font-weight: medium !important;
    font-style: normal;
}

.archivo-light {
    font-family: "Archivo", sans-serif;
    font-weight: light !important;
    font-style: normal;
}

.archivo-thin {
    font-family: "Archivo", sans-serif;
    font-weight: 100 !important;
    font-style: normal;
}

.half-opacity {
    opacity: 50%;
}


.icon {
    width: 3.5rem;
    height: 3.5rem;
}


@media only screen and (max-width: 1200px) {

    .hero {
        padding: 5% 3%;
    }

}

@media only screen and (max-width: 992px) {

    .hero {
        padding: 5% 0%;
    }

    body {
        padding: 0;
    }

    main {
        border-radius: 0;
        padding: 0rem 2rem;
    }
}

@media only screen and (max-width: 768px) {

    .profile {
        max-width: 280px;
    }
}

@media only screen and (max-width: 576px) {
    html {
        font-size: 90%;
    }
}

/* Background */

body {
    background: #3399ff;
}


.circle {
    position: fixed;
    border-radius: 50%;
    background: white;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}

.small {
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
    z-index: -1;
}

.medium {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
    z-index: -1;
}

.large {
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
    z-index: -1;
}

.xlarge {
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
    z-index: -1;
}

.xxlarge {
    width: 1000px;
    height: 1000px;
    left: -500px;
    bottom: -500px;
    z-index: -1;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.7;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 0.9;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}