@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic&display=swap');

body {
    background-color: rgb(144, 144, 144);
    color: #FFFFFF;
    font-family: 'Playwrite NZ Basic', Helvetica, sans-serif;
    border-radius: 25px;
}

.title {
    text-align: center;
    background-color: rgb(44, 44, 44);
    margin:auto;
    width: 50%;
}

.center {
    display: flex;
    align-items: center;
    margin: auto;
}

.tabs {
    margin: auto;
    margin-top: 20px;
    text-align: left;
    background-color: rgb(44, 44, 44);
    flex-shrink: 0;
    width: 150px;
    list-style-type: none;
    list-style-position: outside;
    transition: all 0.3s ease;
    padding: 5px;
}

.tabs a {
        color: #FFFFFF;
}

.tabs:hover {
    background-color:rgb(99, 99, 99);
}
.tabs ul {
    list-style-type: none;
    padding: 5px;
}
.tabs li {
    transition: all 0.2s ease;
}
.tabs li:hover {
    padding-left:10px;
}

.main {
    text-align: center;
    background-color: rgb(44, 44, 44);
    margin:auto;
    width: 75%;
}