* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: skyblue; 
}

.contentes {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: skyblue;
}

.navbar {
    display: flex;
    background-color: rgb(0, 0, 160);
    padding: 15px 20px;
    color: white;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.data-container {
    width: 100%;
    max-width: 1200px;
    min-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentes-content {
    margin-top: auto;
    padding: 10px 20px;
}

.logo {
    font-family: serif;
    font-style: italic;
}

.menu-data {
    margin-left: auto;
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    background-color: rgb(0, 0, 160);
    transition: background-color 0.1s ease-in;
    margin: 0 10px;
    font-weight: bold;
}

a:hover {
    background-color: white;
    color: rgb(0, 0, 160);
    transition: color 0.1s ease-in;
    
}

.size-icon {
    font-size: 26px;
}

#Menu-bar {
    display: none;
    margin-left: auto;
}

#close {
    display: none;
}

@media (max-width:761px) {
    .menu-data {
        position: absolute;
        flex-direction: column;
        text-align: left;
        align-items: flex-end;
        left: 100%;
        top: 0;
        background-color: black;
        width: 250px;
        padding: 20px;
        z-index: -10;
    }

    #Menu-bar {
        display: block;
    }

    #close {
        display: block;
    }

}
.contentes-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    color: white;
}

.contentes-content h1 {
    font-size: 40px;
    text-align: left;
    padding: 10px 15%;
    color: rgb(228,255,255);
}

.contentes-content p {
    font-size: 24px;
    color: rgb(0, 0, 160);
    text-align: left;
    padding: 10px 15%;
}
h1 i{
    color: rgb(255, 96, 123);
}