@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    
}

h1{
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 20px;
    padding-top: 30px;
}

h2{
    font-size: 45px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

a{
    font-size: 20px;

}

.message{
    display: none;
}

.container{
    max-width: 1000px;
    width: 100vw;
}

.birthday-section{
    display: flex;    
}

.birthday-section > p{
    padding-right: 100px;
}

.image{
    border-radius: 200px;
    width: 20%;
    height: auto;
}



p{
    font-size: 20px;
    font-weight: 300;
    line-height: 40px;
    margin: 0;
}

.gift-message{
    padding-top: 25px;
}

.icon{
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
    
}

.button{
    font-size: 20px;
    background-color: black;
    color: white;
    border-radius: 50px;
    padding: 10px 50px 10px 50px;
    box-shadow: none;
    border: none;
    margin-left: 20px;
    cursor: pointer;
}

.text-input{
    border-radius: 50px;
    width: 200px;
    padding: 10px 15px 10px 15px;
    font-size: 18px;
}

.form{
    margin-top: 40px;
    text-align: center;
}



.center {
    margin: auto;
    padding: 50px;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    }
  