.radio-container {
    text-align: center;
    font-size: large;
    width:800px;
}

.skip-button {
    background: linear-gradient(to bottom, black, rgb(124, 62, 124));
    border: solid 2px white;
    border-radius: 10px;
    color:white;
    width:50px;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.1s, border 0.1s;
}
.skip-button:hover {
    border: solid 2px rgb(255 170 255);

    color: rgb(255 170 255);

    transition: color 0.1s, border 0.1s;
}

.home-button {
    position: fixed;
    top:0;
    left:0;
    font-size: medium;
}