*{
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;
    font-family: Arial, sans-serif;

}

#main{
    background-color: #515151;
}

@font-face {
    font-family: "Matter";
    src: url(./font/Matter-Light.woff);
}

#title{
    width: 100%;
    height: 15vmax;
    font-size: 3vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #404040;
    -webkit-text-stroke-width: 0.1vmin;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    text-align: center;
    padding: 2vmax 0;
    font-family: "Matter";
}

#title h1:hover{
    color: #fff;
}

.box{
    margin: 5vh 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5vmin;
    justify-content: center;
    align-items: center;
}

.trade{
    width: 90%;
    height: 7vh;
    background-color: #404040;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.trade:hover{
    background-color: #303030;
}

.trade a{
    color: white;
    text-decoration: none;
    font-size: 1.5vmax;
}

#footer{
    background-color: #424242;
    /* height: 20vh; */
    padding: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.socials{
    display: flex;
    gap: 1.8vw;
}

.socials i:hover{
    font-size: 2vw;
}

#part1 a{
    font-size: 4vh;
    color: #fff;
    text-decoration: none;    
}

#part1 img{
    width: 7vmax;
}

#part1 h3{
    font-weight: 100;
    padding-bottom: 2vh;
    color: #fff;
}

.part h5{
    font-weight: 200;
    cursor:default;
}

.part h5:hover{
    font-weight: 400;
    font-size: 2vh;
    border-radius: 20px;  
    color: #FFD230;
}

#part2,#part3,#part4{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    cursor: default;
    color: #fff;
}

.copyright{
    height: 7vh;
    background-color: #313131;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor:default;
}


@media (max-width:600px) {
    .trade a{
        font-size: 2vmax;
        text-align: center;
    }   
    
    #footer{
        gap: 3vmax;
    }
}