* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.start {
    color: white;
    text-align: center;
    margin-top: 5%;
    font-size: 11px;
}

.start img {
    padding-bottom: 10px;
    width: 120px; height: 120px;
    border-radius: 90px;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 2%;
}

.links ul {
    list-style: none;
}

.links a {
    text-decoration: none;
    color: #fff;
}

.link {
    margin: 20px 46%;
    border: solid white;
    padding: 15px 0px;
}

.link a:hover {
    text-decoration: underline;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .start {
        margin-top: 15%;
        font-size: 25px;
    }

    .start img {
        width: 200px;
        height: 200px;
        margin-bottom: 10px;
    }

    .links {
        margin-top: 6%;
    }

    .link {
        margin: 40px 20%;
        padding: 30px 0;
    }

    .link a {
        font-size: 30px;
    }
}