* {
    cursor: none;
    overflow: hidden;
}

body {
    font-family: 'Zen Loop', sans-serif;
    font-size: 8.25vh;
    font-weight: 800;
    color: #f2c57c;
    margin-left: 2%;
    background-color: #426a5a;
    user-select: none;
}

.emph {
    font-family: 'Domine', serif;
    font-size: 7.5vh;
    font-weight: 300;
    padding: 0;
    margin: 0
}

div.cursors div {
    position: absolute;
    top: 300px;
    left: 300px;
    width: 32px;
    height: 32px;
    background-color: #999999;
    opacity: 0.2;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

div.cursors div[dot] {
    width: 6px;
    height: 6px;
    background-color: #f2c57c;
}

div.cursors div[bigdot] {
    border: 2px solid #f2c57c;
}

.socials {
    position: absolute;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5vh;
}

.socials svg {
    width: 5vh;
    height: 5vh;
    fill: #f2c57c;
    transition: fill 0.7s ease;
}

.socials svg:hover {
    fill: #ef6f6c;
}