html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}

h1, h2, .title p {
    font-size: 22px;
    font-family: "Playwrite NO", cursive;
}

a {
    color: #6A0F49;
    text-decoration: none;
    transition: color 0.5s;
}

a:hover {
    color: #97EFE9;
}   

.menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #14203c;
    z-index: 100;
}

.menu .menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu .menu-hide-button {
    position: fixed;
    top: 40px;
    right: 40px;
    border: 0;
    background-color: #FF1010;
    color: white;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s;
}

.menu .menu-hide-button:hover {
    transform: rotate(45deg);
.menu .menu-hide-button:hover {
    transform: rotate(45deg);
}
}

.menu .menu-hide-button:focus {
    transform: scale(0);
}

.menu .menu-list ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.menu .menu-list a {
    text-decoration: none;
}

.menu .menu-list ul li {
    color: white;
    border: white 2px solid;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.5s, color 0.5s, border-color 0.5s;
}

.menu .menu-list li:hover {
    color: #9f7a27;
    border-color: #9f7a27;
    transform: scale(1.1);
}

.menu-show button {
    height: 200px;
    position: fixed;
    top: 40px;
    right: 40px;
    border: 0;
    color: white;
    background-color: #af8b3d;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s;
    z-index: 200;
}

.menu-show button:hover {
    transform: scale(1.2);
}   

.menu-show button:focus {
    transform: scale(0);
}

.header {
    width: 100%;
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.header .center {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
}

.header .center h1 {
    color: white;
}   

.content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #19202a;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content .section {
    max-width: 600px;
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 20px;
    background-color: #ebeae5;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

.content .section h2 {
    color: #3c7a9b;
}

.content .section p {
    text-align: justify;
}

.content .section .side {
    width: 50%;
}

.content .section .side img {
    border-radius: 20px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    transition: transform 0.5s;
}

.content .section .side img:hover {
    transform: rotate(5deg);
}

.footer {
    width: calc(100% - 40px);
    padding: 20px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c7a9b;
}

.footer .content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: inherit;
}

.footer .content .side {
    width: 40%;
}

.footer .content .text {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    transform: rotate(4deg);
}

.footer .content img {
    max-width: 200px;
    width: 100%;
}


.card {
    width: 300px;
    height: 500px;
    border-radius: 20px;
    position: relative;
}

.card .title {
    width: 100%;
    height: 100%;
    background-color: #3f7b9c;
    color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
    border: 4px solid black;
}

.card .title p {
    font-weight: bold;
}

.card .info {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #182842;
    color: white;
    border-radius: 20px;
    transition: transform 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    border: 4px solid black;
}

.card:hover .info {
    transform: scale(1);
}

@media only screen and (max-width: 650px) {
    .section .side {
        width: 90% !important;
    }

    .section {
        flex-direction: column !important;
    }
}
