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

body {
    font-family: Tahoma, sans-serif;
    color: white;
    max-width: 720px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.5;
    background-color: rgb(7, 8, 44);
    
    }

    h1 {
        margin-bottom: 1.5rem;
        padding-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;

    }

ul {
    list-style-type: none;
    font-size: 1.2rem;

}

li {
    margin: 0.4rem 0;
}

a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease-in-out;

    &:hover {
        color: rgb(93, 180, 247);
        font-size: 110%;
    }

    &:visited {
        color: rgb(127, 238, 90);
    }   
}