@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer{
    height: 100px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

footer{
    justify-content: space-around;
}

h1{
    font-size: 50px;
}

main{
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3{
    font-size: 35px;
    margin-bottom: 50px;
}

.container{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    background-color: rgba(169, 169, 169, 0.575);
    padding-top: 20px;
    padding-bottom: 30px;
    border-radius: 25px;
}

p, li{
    font-size: 25px;
}

p{
    width: 60%;
    text-align: center;
}

a{
    padding: 15px;
    border-style: solid;
    border-radius: 10px;
    text-decoration: none;
    color: white;

    transition: all 0.5s;
}

a:hover{
    cursor: pointer;
    background-color: white;
    color: black;
    transform: scale(1.2, 1.2);
}

.image-holder{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.space{
    display: flex;
    width: 90%;
    justify-content: space-around;
}

img{
    margin-bottom: 20px;
    height: 200px;
    margin: 30px;
    border-radius: 15px;

}

button{
    font-size: 25px;
    padding: 10px;
    border-radius: 15px;
    border-style: none;
    background-color: darkgray;
}

button:hover{
    cursor: pointer;
}

button:active{
    background-color: white;
}
