@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(236, 234, 234);
    padding-left: 64px;
    padding-right: 64px;
    padding-top: 32px;
    padding-bottom: 16px;
}

.lama-img {
    width: 100%;
    border-radius: 15px;
}

.header {
    color:blue;
    font-size: 24px;
    font-weight: bold;
}

.header:hover {
    text-decoration: none;
    color: blue;
    font-size: 25px;
}

.img-div {
    width: 75%;
    background-color: white;
    padding: 16px;
    border-radius: 15px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-div {
    background-color: white;
    padding: 8px;
    margin-left: 30px;
    border-radius: 4px;
}

a {
    color: blue;
    text-decoration: none;
}

a:hover {
    color: red;
    text-decoration: overline;
}

.legal-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.hide {
    display: none;
}
  
.myDIV:hover + .hide {
    display: block;
    color: red;
}