.MainDiv{
    display: block;
    width: 800px;
    background-color: pink;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    margin: auto;
    padding: 10px;

}

header{
    text-align: right;
    background-color: white;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    margin-bottom: 10px;
}

.disclaimer{
    text-align: auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    color: rgb(255, 0, 43);
    text-shadow: 2px 2px 2px rgb(224, 197, 206);
    background-color: white;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    margin-bottom: 10px;  
    padding: 10px;
}

main{
    color: rgb(75, 75, 75);
    background-color: white;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    width: 70%;
    padding: 15px;
}

a:not(:has(img)) {
    color: rgb(255, 61, 94);
    text-decoration: none;
    font-weight: bold;
    background-color: #ffe4ec;
    padding: 5px 10px;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(255, 192, 203, 0.4);
}

a:not(:has(img)):hover {
    background-color: rgb(255, 61, 94);
    color: white;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 4px 4px 10px rgba(255, 105, 135, 0.5);
    text-shadow: 1px 1px 2px #ffcad4;
}

aside{
    display: block;
    color: rgb(75, 75, 75);
    width: 30%;
    background-color: white;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    margin-left: 15px;
    padding: 15px;
}

footer{
    text-align: center;
    background-color: white;
    border: 2px dotted rgb(255, 61, 94);
    border-radius: 15px;
    margin-top: 10px;
}
