:root {
    --weight-section-width: 200px;
    --weigth-limitator-size: 8px;
    --soft-blue: rgb(50, 125, 224);
}

body {
    background: url('./back.jpg');
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h3 {
    color: gold;
}

.menu {
    background-color: var(--soft-blue);
    display: flex;
    flex-direction: row;
    min-width: 400px;
    height: 50px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    font-size: large;


    a {
        padding: 5px;
        color: white;
        text-decoration: none;
    }

    a:hover{
        color: gold;
    }
}

.menu-item{
    padding: 10px;
}

.main-content{
    background-color: rgba(255, 255, 255, 0.8);
    height: 80vh;
    padding: 20px;
}