
.page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100vw;
    min-height: 100vh;
    position: absolute;
    font-size: min(1rem, 3vw)
}

.body {
    display: flex;
    flex-direction: column;
    background-color:lightblue;
}

.image {
    margin: auto;
    margin-bottom: 50px;
    width: min(65%, 300px);
    height: auto;
}

.card {
    color: black;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-family: 'Merriweather-Sans';

    background-color: white;

    padding: 24px;
}

.name {
    color:inherit;
    font-size: 4rem;
}

.email {
    padding-top: 8px !important;
}

.urls {
    padding-top: 16px;
}

.link:link {
    font-size: 2rem;
    color:inherit;
    text-decoration: none;
    padding: 0 1vmin;
}

.link:hover {
    text-decoration: underline;
}

.link:visited {
    color:inherit;
}

.unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.shadow {
    box-shadow: #44a5c5 10px 6px 0px
}

.border {
    border: black;
    border-width: 2px;
    border-style: solid;
    border-radius: 20px;
}

.circle-border {
    border-radius: 50%;
}


@font-face {
    font-family: Merriweather-Sans;
    src: url(assets/Fonts/MerriweatherSans-Regular.ttf);
}
