* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.button {
    background-color: white;
    border: none;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000099;
    transition: transform 0.05s linear;
}

.button:hover {
    background-color: #000099;
    color: white;
    cursor: pointer;
}

.button:active {
    transform: scale(90%);
}

.container {
    background-color: #868686;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 20px;
}

main {
    display: inline-block;
    background-color: #3399ff;
    border: 1px solid black;
    border-radius: 5px;
    width: 300px;
    color: white;
}

header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.title span {
    font-size: 20px;
}

.title a {
    text-align: center;
    padding: 5px 10px;
    font-size: 20px;
}

.content-cont {
    padding: 5px;
    font-size: 20px;
}

.content-cont ul {
    margin-left: 20px;
}

@media(max-width: 480px) {
    .container {
        padding-top: 0;
    }
    
    main {
        border: none;
        border-bottom: 1px solid black;
        border-radius: 0;
        width: 100%;
    }
}