body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}
#logo {
    width: 140px;
    height: auto;
}
h1 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}
.welcome {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-size: cover;
    padding: 100px;
}
.linkButton {
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: #13C2C2;
    text-decoration: none;
    color: #1B1B1B;
    min-width: 150px;
    font-size: 16px;
    padding: 14px 40px 14px 20px;
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
    border: solid 1px #13C2C2;
    transition: 0.2s all ease;
    cursor: pointer;
}
.linkButton:after {
    position: absolute;
    top: 50%;
    color: #1B1B1B;
    font-size: 20px;
    transform: translateY(-50%);
    right: 10px;
    width: 24px;
    height: 24px;
    background: transparent !important;
    pointer-events: none;
    content: '>';
}
.linkButton:hover, .linkButton:hover:after {
    background: #1B1B1B;
    color: #13C2C2;
}