/* Hero section styles*/

.hero-section {
    background-image: url(../images/kenta_shota_utsunomiya.jpg);
    padding: 100px;
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section > .top-heading {
    padding: 1px 20px;
    background-color: #11122b;
    color: #cbcbcb;
    width: 290px;
    border-radius: 2px;
}

.hero-section > .bottom-heading {
    background-color: #cea135;
    color: #11122b;
    padding: 1px 20px;
    margin-top: 15px;
    width: 107px;
    border-radius: 2px;
}

/*features section*/
.features-section {
    height: 400px;
    background-image: url(../images/kenta_daddy_park.JPG);
    background-size: cover;
    background-color: #cea135;
    background-position: center;
    border-top: 10px solid white;
    color: #11122b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu Condensed", sans-serif;
    box-shadow: inset 0px -26px 79px -8px rgba(0, 0, 0, 0.58);
}

.features-section > .columns-wrapper {
    width: 1000px;
    display: flex;
    justify-content: space-between;
}

.features-section > .columns-wrapper > .column {
    padding: 20px;
    margin: 42px;
    text-align: center;
    border-bottom: 5px solid transparent;
    border-radius: 10px;
    transition: 1s;
}

.features-section > .columns-wrapper > .column:hover {
    border-bottom: 5px solid #11122b;
}

.features-section > .columns-wrapper > .column :nth-child(1) {
    font-size: 3em;
}

.features-section > .columns-wrapper > .column :nth-child(2) {
    font-size: 2em;
    font-weight: 1000;
    neight: 50px;
    transition: 1s;
}

.features-section > .columns-wrapper > .column :nth-child(2):hover {
    letter-spacing: 1px;
}

.features-section > .columns-wrapper > .column :nth-child(3) {
    letter-spacing: 2px;
}

/*info-section styles*/

.info-section {
    height: 190px;
    background-color: #11122b;
    color: #cbcbcb;
    /*flexbox container*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
}

.info-section {
    height: 400px;
    
    border-top: 10px solid white;
    color: ghostwhite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu Condensed", sans-serif;
    box-shadow: inset 0px -26px 79px -8px rgba(0, 0, 0, 0.58);
}

.info-section > .columns-wrapper {
width: 1000px;
display: flex;
justify-content: space-between;
}

.info-section > .columns-wrapper > .column {
padding: 20px;
margin: 42px;
text-align: center;
border-bottom: 5px solid transparent;
border-radius: 10px;
transition: 1s;
}

.info-section > .columns-wrapper > .column:hover {
border-bottom: 5px solid ghostwhite;
}

.info-section > .columns-wrapper > .column :nth-child(1) {
font-size: 3em;
}

.info-section > .columns-wrapper > .column :nth-child(2) {
font-size: 2em;
font-weight: 1000;
neight: 50px;
transition: 1s;
}

.info-section > .columns-wrapper > .column :nth-child(2):hover {
    letter-spacing: 1px;
}

.info-section > .columns-wrapper > .column :nth-child(3) {
letter-spacing: 2px;
}
/*footer styles*/

.footer > .links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer > .links-wrapper > .nav-link {
    width: 70px;
    text-align: center;
}
    
.footer > .links-wrapper .nav-link a {
    text-decoration: none;
    font-family: 'Ubuntu Condensed', sans-serif;
    color: ghostwhite;
}

