/* GENERAL */
* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* DEFAULT RULES */
html,body {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin:0;
}

img {
    max-width: 100%;
}

/* BACKGROUND */
body {
    display: grid;
    background-image: url(../images/bg.jpg);
    background-size: cover;
}

/* HEADER/NAVBAR */
header {
    width: 100%;
    height: 50px;
}

/* MAIN AREA */
main {
    background-image: linear-gradient(90deg, #A7A7A6 0%, #80ADDC 95.6140350877193%);
    align-items: center;
    display: grid;
    justify-content: center;
    padding: 10px;
}

main .progress-bar{
    width: 100%;
    margin: 40px auto;
    padding: 50px 0;
    display: grid;
    gap: 20px;

}

main .progress-bar p{
    text-align: center;
    color: white;
    margin: 0;
    letter-spacing: 0.5rem;
}

main .progress-bar .progress-bar-container{
    width: 365px;
    height: 15px;
    background-color: #dfe6ef;
    margin: 0 auto;
}

main .progress-bar .progress-bar-container .progress-bar-fill{
    width: 0%;
    height: 100%;
    background-color: #80addc;
    animation: fill-progress-bar 3s ease-in-out forwards;
}

main .progress-bar .progress-bar-container .progress-bar-text{
   position: relative;
}

main .progress-bar .progress-bar-container .progress-bar-text span{
    color: white;
    position: absolute;
    top: 10px;
}

main .progress-bar .progress-bar-container .progress-bar-text .progress-bar-text-left{
    left: 0;
}

main .progress-bar .progress-bar-container .progress-bar-text .progress-bar-text-right{
    right: 0;
}


main .contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

main .social {
   display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 40px auto;
}

main .social a {
    border: 2px solid white;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* FOOTER */
footer {
    text-align: center;
    color: white;
    margin: 20px auto;
}

/* ANIMATIONS */
@keyframes fill-progress-bar {
    0% {
        width: 0%;
    }
    100% {
        width: 85%;
    }
}