html {
    height: 100vh;
}
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: whitesmoke;
}

#card {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px;
}

#card p {
    margin-left: 10%;
    margin-top: 0.1em;
    margin-bottom: 0.2em;
    font-family: 'Funnel Sans', sans-serif;
    font-weight: 300;
}

#card p a {
    color: #6c6c6c;
    text-decoration: dotted;
}

#card p a:hover {
    color: black;
    font-weight: 400;
    transition: ease-in-out 0.5s;
}

#socials {
    width: 30%;
    min-width: 300px;
    margin: 1em auto;
}

#socials img {
    width: 10%;
    position: relative;
    left: 40%;
}

@media screen and (max-width: 700px) {
    #card {
        aspect-ratio: 2 / 3.5;
        width: 30%;
        min-width: 300px;
        margin: auto;
        background-color: whitesmoke;
        box-shadow: -1px 5px 30px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    #logo {
        width: 85%;
        margin: 25% 8% 50px;
    }
}

@media screen and (min-width: 701px) {
    #card {
        aspect-ratio: 3.5 / 2;
        width: 30%;
        min-width: 300px;
        margin: auto;
        background-color: whitesmoke;
        box-shadow: -1px 5px 30px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    #logo {
        width: 75%;
        margin: 4% 12% 10px;
    }
}
