* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy';
    color: white;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-color: #000;
}

#nav {
    /* background-color: red; */
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

#nav-part2 {
    display: flex;
    gap: 55px;
}

#nav-part3 {
    display: flex;
    gap: 55px;
    align-items: center;
}

img {
    height: 65px;
    width: 20%;
}

#nav h3 {
    text-transform: uppercase;
}

#nav h4 {
    text-transform: uppercase;
}

#nav button {
    background-color: #fff;
    color: #000;
    padding: 15px 25px;
    border: none;
    font-weight: 700;
    font-size: 16px;
}

#main h1 {
    font-size: 110px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main span {
    background-color: brown;
    font-size: 25px;
    padding: 15px 35px;
    margin: 0 25px;
    border-radius: 50px;
}

#main h1:nth-child(2) {
    margin-top: 60px;
}

#main #left-img {
    height: 222px;
    position: absolute;
    top: 24%;
    left: 7%;
    width: 11%;
    border-radius: 15px;
}

#main #right-img {
    height: 222px;
    position: absolute;
    bottom: 24%;
    right: 7%;
    width: 11%;
    border-radius: 15px;
}

h5 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 25px;
}