body {
    background: linear-gradient(#e66465, #9198e5);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    
}

.title {
    color: white;
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 42px;
}

.btn {
    text-decoration: none;
    border: 2px solid white;
    color: white;
    padding: 12px;
    border-radius: 24px;
    width: 80px;
    text-align: center;
    font-size: 18px;
}

.btn:hover {
    border-color: #3f51b5;
    color: #3f51b5;
}