@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.content {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    color: white;
}

.links {
    display: flex;
    margin: 10px 0 10px 0;

    gap: 10px;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Pacifico";
    font-size: 20px;

    gap: 5px;

    color: #e3e3e3;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);

    border: 5px #484848 solid;
    border-radius: 50px;
    padding: 5px 15px 5px 10px;

    width: auto;
    transition: all 0.15s ease-in-out;
}

.hr {
    border: none;
    background: none;

    width: 0;
    margin: 20px;
}

.photo {
    width: 25vw;
    height: auto;

    border-radius: 50px;
    margin: 50px;
}

.link:hover {
    transform: scale(1.1) rotate(-3deg);
    backface-visibility: hidden;
    will-change: transform;
    z-index: 2;

    border-color: rgb(255, 255, 255);
}

img {
    width: 30px;
}