:root {
    --font-family: 'Clash Display', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-user-drag: none; /* Undragable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Extralight.otf");
    font-weight: 200;
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Light.otf");
    font-weight: 300;
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Regular.otf");
    font-weight: 400;
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Medium.otf");
    font-weight: 500;
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Semibold.otf");
    font-weight: 600;
}

@font-face {
    font-family: "Clash Display";
    src: url("./fonts/ClashDisplay-Bold.otf");
    font-weight: 700;
}
body, html{
    font-family: var(--font-family);
    background-color: #2f2f2f;
    color: #fff;
    overflow-x: hidden;
    text-align: center;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100svh;
    gap: 40px;
}
.content h1{
    font-size: 3rem;
    font-weight: 700;
}
.content a{
    padding: 10px 20px;
    background-color: #007bff;
    border-radius: 5px;
}
.content h2{
    font-size: 2rem;
    font-weight: 500;
}
.content p{
    font-size: 1.5rem;
    font-weight: 400;
}
.content a{
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    transition: 0.3s;
}
.content a:hover{
    background-color: #0056b3;
    transition: 0.3s;
}
.content a:active{
    background-color: #004286;
    transition: 0.3s;
}
.content a:focus{
    outline: none;
}
.content img{
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

@media (max-width: 768px){
    .content{
        text-align: center;
        scale: 0.7;
    }
}
