
html {
    margin: 0;
    position: relative;
    min-height: 100vh;
    font-size: 62.5%;
}

body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    color: white;
    background: #252525;
background: -webkit-radial-gradient(center, #252525, #000000);
background: -moz-radial-gradient(center, #252525, #000000);
background: radial-gradient(ellipse at center, #252525, #000000);
    
}

a {
    position: relative;
    padding-bottom: .4rem;
    color: white;
    text-decoration: none;
    width: fit-content;
    font-size: 1.4rem;
}

a:hover {
    color: rgb(232, 224, 9);
}

a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(232, 224, 9);
    transform: scaleX(0);
    transition: 0.3s ease;
}

a:hover::before {
    transform: scaleX(1);
}

#wrapper {
    margin: 0;
    padding: 0;
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
#content {
    min-height: 100vh;
}
.content-wrapper {
    margin: 0 auto;
    margin-top: 10%;
    padding: 0 2%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 2;
    max-width: 1200px;
}


.content-wrapper p {
    font-size: 1.6rem;
}