@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  width: 1400px;
}

.banner {
    width: 1400px;
    height: 400px;
    background-color: #f5a9c3; 
    display: flex;
}

.image-one {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-left: 125px;
}

.text-one {
    color: white;
    flex-direction: column;
    padding-left: 10px;
    margin-top: 125px;
}


.text-one h1 {
    font-family: Rokkitt;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.text-one h2 {
    font-family: Lobster;
    font-size: 75px;
    font-weight: 200;
    margin: 0;
    line-height: 1.3;
    color: lightblue;
}

.topnav {
    max-width: 1400px;
    height: 75px;
    background-color: lightblue;
}

.main-nav {
    line-height: 75px;    
    display: flex;
    justify-content: flex-start;
    margin: 0 100px;
}

.main-nav li {
    list-style: none;
    text-decoration: none;
    font-family: Rokkitt;
}

.main-nav a {
    color: #f5a9c3;
    text-decoration: none;
}

.main-nav a:hover {
    color: #fff;
    font-size: 24px;
    font-family: Lobster;
}

.details {
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    width: 1400px;
    height: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 150px;
}

@keyframes border {
  0%   { border-color: lightblue; }
  50%  { border-color: #f5a9c3; }
  100% { border-color: #eee49d; }
}

.container {
    width: 800px;
    height: 850px;
    background-color: #fff;
    margin: 150px 300px 0px 300px;
    border-radius: 50px;
    border: 10px lightblue dotted;
    animation-name: border;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.container h1 {
    color: #f5a9c3;
    font-family: Lobster;
    font-size: 35px;
    text-align: left;
    margin: 25px 75px;
}

.container h2 {
    color: lightblue;
    font-family: Rokkitt;
    font-size: 20px;
    text-align: left;
    margin: 25px 75px;
}

.container h3 {
    color: #f5a9c3;
    font-family: Lobster;
    font-size: 50px;
    padding: 30px 15px 0px 15px;
}
.container li {
    font-family: Rokkitt;
    color: lightblue;
    list-style: square;
    margin: 25px 75px;
}

.button1 {
    width: 150px;
    height: 50px;
    background-color: #eee49d;
    border-radius: 15px;
    margin: 75px 300px;
    box-shadow: 2px 2px 5px lightblue;
}

.button1 a{
    display: flex;
    list-style: none;
    text-decoration: none;
    color: lightblue;
    text-align: center;
    padding: 15px 30px;
}

.button1:hover {
    box-shadow: 2px 2px 5px pink;
}

.button1 a:hover{
    display: flex;
    list-style: none;
    text-decoration: none;
    color: pink;
    text-align: center;
    padding: 15px 30px;
}