.mobile-only {
    display: none;
}
body {
    position: relative;
    height: 100vh;
    width: 100vw;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
 }
.logo {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, 0%);
}
.main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
 .logo img {
     width: 120px;
 }
 .headline {
     position: absolute;
     left: 50%;
     top: 0%;
     transform: translate(-50%, -100%);
     white-space: nowrap;
     overflow: visible;
     line-height: 2rem;
 }
 .word-transition {
    background-color: #FF00B8;
    background-image: linear-gradient(45deg, #FF00B8, #e89529);
    background-clip: text;
    background-size: 100%;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.get-in-touch {
    margin-top: 16px;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 8px;
    outline: none;
    padding: 12px;
    padding-left: 24px;
    padding-right: 24px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
}
.get-in-touch:hover {
    background-color: black;
    color: white;
    border: 2px solid transparent;
}
.footer {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 0%);
}
 .footer span {
     color: lightgrey;
     font-size: 0.8rem;
 }

@media only screen and (max-width: 1000px) {
    .mobile-only {
        display: block;
    }
    body {
        height: 90vh;
        font-size: 2rem;
     }
     .logo img {
         width: 200px;
     }
     .headline {
        line-height: 4rem;
     }
     .get-in-touch {
        border: 4px solid black;
        font-size: 1.6rem;
        padding: 2rem;
        padding-left: 4rem;
        padding-right: 4rem;
     }
     .footer span {
         font-size: 1.6rem;
     }
}
