* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section .banner {
    background-image: url('../assets/banner.png');
    background-position: center;
    background-color: #fff;
    height: 100%;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    object-fit: cover;
    min-height: 400px;
    background-size: cover;
}

.title {
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: green;
}

.title:hover .title::after {
    content: '';
    background-color: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
}

.banner-section h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: green;
}

.banner-section h1::after {
    content: '';
    background-color: #0b053b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    transform: translateX(-50%);
}

.banner-section h4 {
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.7rem;
}

.btn-button {
    background-color: green;
    color: white;
    font-weight: 900;
    width: 250px;
    padding: 10px;
}

.image-container {
    width: 90%;
    margin: 0 auto 30px auto;
}

.image-container img {
    display: block;
    position: relative;
    max-width: 100%;
    max-height: 400px;
    margin: auto;
}

form h4 {
    font: size 20px;
    font-weight: 700;
    margin: 20px 10px;
    text-transform: uppercase
}

figcaption {
    margin: 20px 0 30px 0;
    text-align: center;
    color: #fff;
}

input[type="file"] {
    align-items: center;
}

label {
    display: block;
    background-color: #04132b;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 280px;
    padding: 18px 0;
    border-radius: 19px;
    margin: auto;
    cursor: pointer;
}