
body{
    text-align: center;
    background: linear-gradient(#bebdbd, #ffd2a8);
    background-repeat: no-repeat;
    background-size: 100%;
}
.container-fluid{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
h2{
    color: white;
    font-family: serif;
    font-size: 30px;
}

.header-container>img{
    width: 100%;
    height: auto;
    max-width: 500px;
    padding-top: 2rem;
}

p{
    color: white;
    margin-bottom: 3rem;
}

.container-icons{
    display: flex;
    justify-content: center;
    gap: 5rem;
}
a{
    color: white;
    text-decoration: none;
}
a:hover{
    transform: scale(1.2);
    display: inline-block;
    color: white;
}
.container-buttons{
    display: grid;
    justify-content: center;
    margin-bottom: 3rem;
}
.btn-light{
    background-color: white;
    border-radius: 30px;
    box-shadow: 1px 0px 6px black;
    margin-bottom: 1rem;
    padding: 6px 79px;
}

@media (max-width:375px){
    h2{
        font-size: 20px;
    }
}
