* {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    overflow-x: hidden;
  }

body {
    background-color: #ffebf7;
}

  h1{
    margin-top: 2vw;
    margin-bottom: 2vw;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8vw;
    text-align: center;
    color: black;
    margin-left: 10vh;
    margin-right: 10vh;
  }
  .bg{
    background-color: rgba(0,0,0,0.861);
    width: 100vw;
    height: 13vh;
}
.image{
    
    margin-top: 3vw;
    margin-bottom: 5vw;
}
img{
    height: 15vw;
    width: 15vw;
    box-shadow: 2px 2px 10px black;
    border-radius: 20px;
    margin-right: 4vw;
}
nav ul {
    position: absolute;
    list-style-type: none;
    margin: 40px;
    width: 30vw;
    left: calc(60%);
    
}

nav ul li {
    display: inline;

}

nav ul li a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3vw;
    color: white;
    margin: 8px;
    transition: color 0.2s;
}

.head {
    font-size: 3vw;
    margin-top:5vw;
    margin-bottom: 5vw;
    text-shadow: 1px 1px 3px black;
}
@media screen and (max-width:1024px)
{
    nav ul{
        width:36vw;
        position: absolute;
        left: calc(50%);
    }

    nav ul li {
        display: inline;
    
    }
    
    nav ul li a {
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3vw;
        color: white;
        margin: 8px;
        transition: color 0.2s;
    }
}
a:hover {
    color: #f65a5a;
}