*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

a:hover{
    color: white;
}

a{
    text-decoration: none;
    color: #fdc52b;
}

span{
    color: #fdc52b;
}

.header{
    background-color: #073e92;
    display: flex;
    flex-direction: column;
}

.nav{  
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.right-links{
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    gap: 50px;
    font-size: 20px;
}

.hero{
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 120px;
}

.hero-text{
    font-family: 'Times New Roman', Times, serif;  
    font-size: 18px; 
    color: white;
}

button a{
    text-decoration: none;
    color: #073e92;
}

.hero-text button{
    font-family: 'Times New Roman', Times, serif;  
    font-size: 18px;  
    background-color: #fdc52b;
    padding: 3px 10px;
    border: 1px solid rgb(84, 91, 115);
}

.hero-image{
    font-family: 'Times New Roman', Times, serif;  
    padding-bottom: 10px;;
    color: #fdc52b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.header img{
    width: 250px;
    height: auto;
}

.works{
    width: 100%;
    color: #073e92;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;  
}
.works h2{
    font-size: 38px;
    padding: 10px;
}
 
.works img{
    width: 250px;
    height: auto;
    margin: 10px;
}

.paintings{
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    gap: 25px;
}

.painting{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.starry{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    color: white;
}

.starry-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta{
    width: 75%;
    height: 125px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #073e92;
    margin: 50px 30px 30px 30px;
    border-radius: 10px;
}

.cta-text{
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}
.cta-text p{
    font-size: 16px;
}
h5{
    padding-bottom: 5px;
}
.redirect button{
    font-family: 'Times New Roman', Times, serif;  
    font-size: 18px;  
    background-color: #fdc52b;
    padding: 3px 10px;
    border: 1px solid rgb(84, 91, 115);
}

.footer{
    width: 100%;
    height: 50px;
    background-color: #073e92;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p{
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}
