.body {
    background: linear-gradient(to right, #4E65FF, #92EFFD);
    /* Gradient colors */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    height: 30vh;
}


.header {
    font-size: 4vw;
    font-family: 'Satisfy', cursive;
    text-align: center;
    z-index: 1;
    color: black;

}

.sub-header {
    font-size: 2vw;
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 9vw;
    }
}

.link-list {

    list-style-type: none;
    font-family: 'Oxygen', sans-serif;
    text-align: center;
    margin: 70px;
}

li {
    padding: 10px;
}


.links {
    background-color: #FED59D;
    height: 10vh;
    width: 25vw;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.4vw;
    color: black;
    cursor: pointer;
    outline: none;
    box-shadow: 2px 2px 4px;
    transition: scale 0.2s ease;
}

.server_manager {
    background-color: #FEBDB0;
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 1.5vw;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
    box-shadow: 2px 2px 4px;
    transition: scale 0.2s ease;
}

.docker {

    background-color: #FEBDB0;
    position: absolute;
    bottom: 16px;
    right: 87px;
    font-size: 1.5vw;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
    box-shadow: 2px 2px 4px;
    transition: scale 0.2s ease;

}

@media screen and (max-width: 600px) {
    button {
        font-size: 4vw;
        width: 50vw;
    }
}

button:hover {
    scale: 1.05;
}