* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    color: #1c1d20;
}

html,
body {
    width: 100%;
    height: 100%;
}

.main {
    height: 100vh;
    background-color: #E9E9E9;
}

nav {
    padding: 3vw;
    display: flex;
    justify-content: space-between;
}

nav h4 a {
    font-weight: 500;
    text-decoration: none;
}

nav .right-nav {
    display: flex;
    gap: 3vw;
    z-index: 2;
}

.right-nav a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    font-weight: 500;
}

.right-nav a i {
    font-size: .5vw;
    scale: 0;
    transition: all ease 0.3s;
}

.right-nav a:nth-child(1):hover i {
    scale: 1;
}

.right-nav a:nth-child(2):hover i {
    scale: 1;
}

.right-nav a:nth-child(3):hover i {
    scale: 1;
}

.main h1 {
    font-size: 7vw;
    text-align: center;
}

h1 span {
    font-weight: 400;
    font-style: italic;
}

.btns {
    padding: 5vw 0vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

button {
    padding: 15px 25px;
    border: unset;
    border-radius: 50px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
}

button a {
    text-decoration: none;
    font-weight: 500;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #334BD3;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all ease 0.4s;
}

button:hover a {
    color: #e8e8e8;
}

button:hover i {
    color: #e8e8e8;
}

button:hover::before {
    width: 100%;
}






@media (max-width: 768px) {

    .main {
        display: flex;
        flex-direction: column;
        gap: 40vw;
    }

    .main h1 {
        font-size: 10vw;
        text-align: center;
    }

    .btns {
        padding: 5vw 0vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vw;
    }
}