body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff;
    color: #052F58;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    width: 80%;
    left: 10%;
}

.header a {
    text-decoration: none;
    color: #052F58;
    padding: 10px 20px;
}

.header a:hover {
    background-color: #052F58;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
}

.logo img {
    height: 70px;
}

.contact {
    font-weight: 600;
}

.content {
    text-align: left;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

.content h1 {
    font-size: 64px;
    font-weight: 800;
    margin: 0;
}

.content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0;
}

.content p {
    font-size: 18px;
    font-weight: 600;
    color: #777;
}

.cones {
    margin-top: 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {
    .header a {
        background-color: #052F58;
        color: #ffffff;
        border-radius: 6px;
        padding: 10px 20px;
    }

    .header a:hover {
        background-color: #052F58;
        color: #ffffff;
        border-radius: 6px;
        padding: 10px 20px;
    }

    .content h1 {
        font-size: 50px;
        font-weight: 800;
        margin: 0;
    }

    .content h2 {
        font-size: 27px;
        font-weight: 600;
        margin: 10px 0;
    }

    .content p {
        font-size: 18px;
        font-weight: 600;
        color: #777;
    }
}
