*{
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;
    font-family: Arial, sans-serif;

}

#main{
    background-color: rgb(121, 171, 160);
}

#title{
    width: 100%;
    height: 15vw;
    font-size: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color:blueviolet;
    color: transparent;
}

#title h1:hover{
    color: blueviolet;
}

.box{
    margin: 5vh 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5vh;
    justify-content: center;
    align-items: center;
}

.trade{
    width: 90%;
    height: 7vh;
    background-color: rgb(52, 136, 108);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.trade:hover{
    background-color: rgb(157, 81, 18);
}

.trade a{
    color: white;
    text-decoration: none;
    font-size: 1.5vw;
}