body {
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: middle;
    overflow-x: hidden;
    background-color: rgb(0, 41, 58);
}

.buttons-div {
    width: 50vw;
    height: 50vh;
    margin-left: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.buttons-div a {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    height: 14vh;
    width: 33%;
    border-radius: 50px;
    font-size: 5.5vh;
    cursor: pointer;
    transform: scale(1);
    transition: transform .15s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    align-items: center;
}
.buttons-div a:hover {
    transform: scale(1.1);   
}
.buttons-div a {
    text-decoration: none;
    color: white;
    
}

.names{
    padding-top: 22px;
}