html {
    scroll-behavior: smooth;
}

body {
    background-image: url(src/hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-color: rgb(25, 25, 25);
    font-family: Arial, Helvetica, sans-serif;
}

#hero-name p, #club-name, #awards {
    margin: 0;
    font-weight: bolder;
    font-size: 2.5rem;
}


/* For navbar bg-color */

.bgcolor{
    transition: all 1s;
    background-color: rgb(50, 50, 50);
    color:white;
}


#s1{
    min-height:100vh;
    margin: 10px;
    color: white;
    display: grid;
    place-items: center;
}

#s4 {
    min-height: 50vh;
    align-items: center;
    margin: 5em 0 2em 0;
    padding-top: 30px;
}

.about {
    background-color: rgb(50, 50, 50);
    color: white;
    padding: 5rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 10px;
}

.about img {
    margin-top: 2em;
}

#s1, #s2, #s3, #s4 {
    overflow-x: hidden;
}

footer {
    color: black;
}

#desc {
    margin: auto;
    margin-top: 2em;
}

@media only screen and (max-width: 575px) {
    .about {
        margin: 0;
        padding: 2rem;
        width: 100%;
    }
    #desc {
      text-align: center !important;
    }
    #hero-name, #club-name, #awards {
        font-size: 2rem;
    }
    .navbar-nav , nav{
        background-color: rgb(50, 50, 50);
    }
    ul{
        width: 100%;
    } 
    
   
  }

.desc-cyrus, .desc-torero {
    width: 100%;
}

.desc-cyrus {
    margin-bottom: 5rem;
}

.contacts a{
    text-decoration: none;
    color: white;
}

.contacts a:hover {
    color: red;
    text-decoration: underline;
}

.socials a{
    text-decoration: none;
    color: white;
}

.card{
    border-radius: 4px;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    cursor: pointer;
}

.card:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}