@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {
    background-color: #1d2026;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

.menu {
    color: aliceblue;
    min-height: 100px;
    width: 100%;
    background-color: #1d2026;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0;
    padding: 0;
}

li {
    margin: 0 10px;
    clear: both;
}

h2 {
    margin-right: 50px;
}

a:hover {
    color: rgb(65, 179, 179);
}

.btn:link,
.btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(248, 248, 248);
    padding: 10px 30px;
    border: 1px solid;
    border-radius: 1000px;
    display: inline-block;
    transition: all .2s;
    position: relative;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(27, 27, 27, .5);
}

.btn:active {
    transform: translateY(-3px);
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    transition: all .3s;
}

.btn:hover::after {
    background-color: rgb(0, 238, 255);
    transform: scaleX(1.4) scaleY(1.5);
    opacity: 0;
}

.content>h2 {
    color: rgb(65, 179, 179);
    margin-left: 30px;
}

.content h3 {
    color: rgb(58, 156, 156);
    margin-left: 30px;
}

.content {
    color: rgb(194, 196, 199);
}

.content a {
    color: rgb(194, 196, 199);
    text-decoration: none;
    font-weight: bold;
}

.content {
    width: 100%;
}

.content ul {
    list-style: circle;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.content ul li {
    margin-left: 5%;
    clear: both;
}

@media screen and (max-width: 1350px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
    ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    li {
        margin: 10px 0;
    }
    h2 {
        margin-right: 0;
    }
}

@media screen and (max-width:600px) {
    .content>ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .content ul li {
        align-content: center;
        justify-content: center;
    }
    .content h2 {
        display: flex;
        justify-content: center;
        margin-left: 0%;
        margin-top: 30px;
    }
    .content>h3 {
        display: flex;
        justify-content: center;
        margin-left: 0%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}