@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

body {
    margin: 1;
    padding: 0;
    background-color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

@media only screen and (max-width: 992px) {
    body {
      margin: 1 !important;
    }
    
    p {
      font-size: 1.10rem !important;
    }

    h1 {
        font-size: 2.80rem !important;
    }
}

@media only screen and (max-width: 668px) {
    body {
      margin: 1 !important;
    }
    
    p {
      font-size: 1rem !important;
    }

    h1 {
        font-size: 2.60rem !important;
    }
}

.content {
    text-align: left;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #999999;
    margin-bottom: 2rem;
}

a {
    color: #999999;
}

.icons {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-bottom: 2rem;
}

.icon {
    font-size: 2rem;
    margin-right: 1.75rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.icon:hover {
    transform: scale(1.2);
    color: #008cba;
}

.icon-link:hover {
    transform: scale(1.2) !important;
    color: #008cba !important;
}
