@font-face {
    font-family: Unbounded-Regular;
    src: url("./Assets/Fonts/Unbounded/Unbounded-Regular.ttf");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Unbounded-Regular;
}
body{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
main{
    border: 1px solid black;
    width: 1366px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 4px;
}
header{
    background-color:darkblue;
    width: 100%;
    color: white;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
nav{
    background-color: aquamarine;
    padding: 8px;
    text-align: center;
    width: 80%;
    position: relative;
    top: 20px;
}
nav a{
    padding: 14px;
    text-decoration: none;
    color: black;
}
section{
    margin-top: 32px;
}
.box-lw{
    padding: 16px;
    width: 90%;
    background-color: blueviolet;
    text-align: center;
}
.box-mw{
    padding: 16px;
    width: 60%;
    background-color: chartreuse;
    text-align: center;
}
.box-sw{
    padding: 16px;
    width: 35%;
    background-color: chocolate;
    text-align: center;
}
.box-rows{
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: space-between;
}
