@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda&family=Lato&display=swap');

body{
    font-family: 'Lato', sans-serif;
    width: 90vw;
    margin: auto;
}

h1,h2,h3{
    font-family: 'Bodoni Moda', serif;
}
img{
    display: block;
    width: 100%;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header #logos{
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: space-between;
}

header #logos img{
    width: 100px;
}
header p{
    font-size: 1.5rem;
}

header nav{
    display: flex;
    flex-direction: column;
}

header nav a{
    font-size: 1.2rem;
    margin: 10px;
    padding: 8px 15px;
    border: 1px solid  rgb(41, 128, 156);
    border-radius: 20px;
    text-decoration: none;
    color: rgb(41, 128, 156);
}

header nav a:hover{
    color: white;
    background-color: rgb(41, 128, 156);
}