body {
    margin: 0;
    display: flex;
    background-color: rgb(250, 250, 250);
    flex-direction: column;
    justify-content: center;
    font-family: "switzer", sans-serif;
}

.main {
    margin: 0;
    background: linear-gradient(135deg, rgba(54, 154, 194, 1) 0%, rgba(112, 224, 255, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 60px;
}

.title {
    transition: 0.25s ease-in-out;
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin: 0;
    font-size: clamp(45px, 8vw, 80px);
    transform: translateY(0px) scaleY(0.8);
}

.title:hover {
    transition: 0.25s ease-in-out;
    color: rgb(50, 50, 50);
    transform: translateY(-5px) scaleY(0.8);
}

.desc {
    transition: 0.25s ease-in-out;
    font-size: clamp(10px, 4vw, 25px);
    color: rgb(0, 0, 0);
    margin: 1dvh 0 3dvh 0;
    font-weight: 500;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2dvh 4dvh;
}

.logo {
    cursor: pointer;
    width: 10dvh;
    height: auto;
}

.login {
    background-color: rgb(0, 0, 0);
    border: none;
    padding: 1.5dvh 3dvh;
    border-radius: 5dvh;
    font-size: 2vh;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
