@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
/* font-family: "Special Elite", system-ui; */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: url(../img/background.png) no-repeat center center/cover;
    height: 100%;
    width: 100%;
}
nav{
    background-color: #070707;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: "Special Elite", system-ui;
    padding-top: 10px;
    padding-bottom: 10px;
}
nav a{
    text-decoration: none;
    font-size: 2.1rem;
    color: #f4dfc4;
}
nav img{
    display: flex;
    justify-content: center;
    width: 250px;
}

main{
    font-family: "Special Elite", system-ui;
    padding-inline: 350px;
    margin-top: 60px;
}
.back{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/back_background.png) no-repeat center center/cover;
    height: 48px;
    width: 160px;
    text-decoration: none;
    color: #eedec9;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.mainContent{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.mainContent img{
    width: 600px;
}
.mainContent h1{
    font-size: 3.8rem;
}
.mainContent p{
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 20px;
}
.mainContent h3{
    display: flex;
    align-items: center;
    background-color: #1d1915;
    width: 700px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    color: #eedec9;
    margin-bottom: 10px;
}
.mainContent h3 span{
    color: #857a6e;
}

.footerInfo{
    font-family: "Special Elite", system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footerInfo h1{
    font-size: 5.2rem;
    padding-top: 170px;
}
.footerInfo h3{
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
.socialMedias a{
    text-decoration: none;
    margin-inline: 2px;
}
.socialMedias img{
    width: 30px;
}
.footerInfo p{
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
    padding-bottom: 40px;
}

footer img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}