html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body {
    height: 100%;
    background-color: rgba(13, 27, 42, 1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.box {
    width: 20rem;
    height: 30rem;
    display: flex;
    background-color: black;
    border-radius: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logo {
    display: flex;
    width: 7rem;
    height: 7rem;
    border: 2px solid #a65959;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    background-image: url("../images/wolke_logo.ico");
    background-size: auto 103%;
}

.logo-text {
    font-size: 1rem;
    color: black;
    text-align: center;
    font-family: Verdana, sans-serif;
}

.link {
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
}

.link-box {
    margin-right: 1rem;
    margin-left: 1rem;
    width: 90%;
    border: 2px solid rgba(29, 35, 42, 1);
    border-radius: 1rem;
    align-items: center;
    font-family: Verdana, sans-serif;
    transition: all 0.1s ease-in-out;
    text-align: center;
}

.link-box:hover {
    border: 2px solid rgba(200, 200, 200, 1);
}