@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
    font-family: 'Nunito';
    font-size: 1.5vh;
    background-color: #BE80FF;
    margin: 0px;
}



header {
    border: 3px solid black;
    margin: 0px;
    margin-bottom: 25px;
    background-color: #463382;
    color: white;
    display: flex;
    gap: 100px;
    justify-content: space-between;
}

.logoH {
    height: 80px;
    margin: 10px;
    margin-left: 50px;
}

.commands {
    background-color: #222875;
    width: 20%;
    gap: 0px;
}

.mini {
    border-left: 3px solid black;
    width: 33%;
}

.window {
    border-left: 3px solid black;
    width: 33%;
}

.close {
    border-left: 3px solid black;
    width: 33%;
}



a{
    color: white;
    text-decoration: none;
}

div {
    display: flex;
    gap: 100px;
    justify-content: center;
}



ul {
    list-style-type: none;
}

.hul {
    display: flex;
    gap: 50px;
    align-items: center;
}

.fli {
    margin-bottom: 30px;
}

.dli {
    margin-bottom: 0px;
}



section {
    border: 3px solid black;
    border-radius: 10px;
    padding: 20px 50px;
    background-color: white;
}



table {
    border: 2px solid black;
    border-collapse: collapse;
}

th, td {
  padding: 5px;
}

th {
    background-color: #5fa7f7;
}

tr:nth-child(even){background-color: #f1f1f1;}

tr:hover {background-color: #85d0ff;}



footer {
    border: 3px solid black;
    margin: 0px;
    margin-top: 25px;
    text-align: center;
    background-color: #463382;
    color: white;
    display: flex;
    justify-content: center;
    gap: 100px;
}