* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}

button {
    border: none;
}

.menu {
    width: 100vw;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.btn-students,
.btn-tasks {
    color: black;
    background-color: #FFCCCC;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    padding: 20px;

    &:hover {
        opacity: 0.7;
        cursor: pointer
    }

    &:active {
        opacity: 0.9;
    }
}

.tasks {
    display: none;
}



